Linux终端模拟浏览器访问(curl)

curl [option] [url]

注意 url 一定要带引号,否则url参数不能全部传递成功

 -A <string> 设置用户代理
 -b <name=string/file> 包含cookie的字符串或文件
 -c <file> 操作结束后把cookie写入到这个文件中
 -o <file> 将输出写入到这个文件 也可以使用重定向 > file
 -T <file> 上传文件
 -x <host:port> 使用代理网址
 -X <GET/POST> 指定请求方式
 -i 显示响应头部信息
 -d POST请求传递的数据, 如果数据再json文件中, -d @test.json
 -H 设置请求头

示例:

1
2
curl -i -XGET "http://www.baidu.com"
curl -i -XPOST "http://127.0.0.1/create_user" -d '{"name":"xxx", "age":23}'

test.json

1
2
{"name":"xxx", "age":23}
curl -i -XPOST "http://127.0.0.1/create_user" -d @test.json

设置请求头

1
curl -i -XPOST "http://127.0.0.1/create_user" -d '{"name":"xxx", "age":23}' -H "Content-Type: application/json"
继开 wechat
欢迎加我的微信,共同交流技术